home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / glisp.zoo / TST0.GL < prev    next >
Encoding:
Text File  |  1990-05-30  |  148 b   |  5 lines

  1. "Boucle repetitive sur n"
  2. (setq n 100000)
  3. "(repeat 100000 (if (= n 0) 'ok (setq n (- n 1))))"
  4. (repeat 100000 (if (= n 0) 'ok (setq n (- n 1))))
  5.